OvalShape Class

Used for drawing (two-dimensional) ellipses in a vector graphics environment.

Events

None

Properties

Segments


Methods

None

More information available in parent classes: RectShape:Object2D:Object


Example

Place the following method in the MouseDown event handler of a window. It will draw an oval in the window when the user presses the mouse button.

Dim o as New OvalShape
o.width=60
o.height=30
o.Fillcolor=RGB(127,127,255)

Graphics.DrawObject o,x,y

See Also

ArcShape, CurveShape, FigureShape, FolderItem, Group2D, Graphics, Picture, PixmapShape, RectShape, RoundRectShape, StringShape classes.